home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 128 / MF_UK_128_1.iso / mac / Browsers (OS X) / Omniweb 4.1.1 / OmniWeb-4.1.1.dmg / OmniWeb.app / Contents / Resources / OmniWeb.scriptSuite < prev    next >
Encoding:
Text File  |  2002-10-07  |  3.3 KB  |  123 lines

  1. {
  2.     Name = OmniWeb;
  3.     AppleEventCode = "Ow00";
  4.  
  5.     Classes = {
  6.     NSApplication = {
  7.         Superclass = "NSCoreSuite.NSApplication";
  8.             "AppleEventCode" = "capp";
  9.         Attributes = {
  10.         fullVersion = {
  11.             Type = NSString;
  12.             AppleEventCode = "Ow03";
  13.                     ReadOnly = "YES";
  14.         };
  15.         };
  16.             "ToManyRelationships" = {
  17.                 "browsers" = {
  18.                     "Type" = "OWBrowserController";
  19.                     "AppleEventCode" = "Owbc";
  20.             "ReadOnly" = "Yes";
  21.                 };
  22.             };
  23.             SupportedCommands = {
  24.                 "Flush" = "handleFlushCommand:";
  25.             };
  26.     };
  27.                 
  28.         OWBrowserController = {
  29.             Superclass = "NSCoreSuite.AbstractObject";
  30.             AppleEventCode = "Owbc";            
  31.             Attributes = {
  32.                 navigationBarVisible = {
  33.                     Type = NSNumber;
  34.                     AppleEventCode = "Ow06";
  35.                 };
  36.                 addressAlwaysVisible = {
  37.                     Type = NSNumber;
  38.                     AppleEventCode = "Ow07";
  39.                 };
  40.                 favoritesVisible = {
  41.                     Type = NSNumber;
  42.                     AppleEventCode = "Ow08";
  43.                 };
  44.                 addressString = {
  45.                     Type = NSString;
  46.                     AppleEventCode = "Owas";
  47.                 };
  48.                 canStop = {
  49.                     Type = NSString;
  50.                     AppleEventCode = "Owib";
  51.                 };
  52.             };
  53.             "ToOneRelationships" = {
  54.                 "window" = {
  55.                     "Type" = "NSCoreSuite.NSWindow";
  56.                     "AppleEventCode" = "cwin";
  57.             "ReadOnly" = "Yes";
  58.                 };
  59.             };
  60.             SupportedCommands = {
  61.                 "Reload" = "handleReloadCommand:";
  62.                 "Stop" = "handleStopCommand:";
  63.             };
  64.         };
  65. /*              
  66.         OWURL = {
  67.             Superclass = "NSCoreSuite.AbstractObject";
  68.             AppleEventCode = "OwUR";
  69.             Attributes = {
  70.                 netLocation = {
  71.                     Type = NSString;
  72.                     AppleEventCode = "Ow11";
  73.                 };
  74.                 path = {
  75.                     Type = NSString;
  76.                     AppleEventCode = "Ow12";
  77.                 };
  78.                 query = {
  79.                     Type = NSString;
  80.                     AppleEventCode = "Ow13";
  81.                 };
  82.                 fragment = {
  83.                     Type = NSString;
  84.                     AppleEventCode = "Ow14";
  85.                 };
  86.             };
  87.             SupportedCommands = {
  88.                 "GetURL" = "handleGetCommand:";
  89.             };
  90.         };    
  91. */           
  92.     };
  93.  
  94.  
  95.     Commands = {
  96.         "GetURL" = {
  97.             "CommandClass" = "OWGetURLScriptCommand";
  98.             "Type" = "";
  99.             "AppleEventCode" = "GURL";
  100.             "AppleEventClassCode" = "GURL";
  101.         };
  102.         "Reload" = {
  103.             "CommandClass" = "NSScriptCommand";
  104.             "Type" = "";
  105.             "AppleEventCode" = "Ow09";
  106.         };
  107.         "Stop" = {
  108.             "CommandClass" = "NSScriptCommand";
  109.             "Type" = "";
  110.             "AppleEventCode" = "Ow10";
  111.         };
  112.         "Flush" = {
  113.             "CommandClass" = "NSScriptCommand";
  114.             "Type" = "";
  115.             "AppleEventCode" = "Ow15";
  116.         };
  117.     };
  118.     
  119.     Synonyms = {
  120.     };
  121.  
  122. }
  123.